home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / games / solotrekii / install < prev    next >
Text File  |  1996-11-18  |  2KB  |  131 lines

  1. ; $VER: Install SoloTrek II V1.03 19/09/96 by C. Edward Stewart
  2.  
  3. (message "\n\n\nSoloTrek II\n\nCopyright 1996\n\nInstall SoloTrek II?")
  4.  
  5. (message "\n\n\n\n\nFirst, the system files will be copied\nto the appropriate directories.")
  6.  
  7. (makeassign "MT-Program" "")
  8. (makeassign "MT-Data" "")
  9.  
  10. (set font_dir
  11.  (askdir
  12.   (prompt "Where would you like the Fonts installed?")
  13.   (help @askdir-help)
  14.   (default "FONTS:")
  15.   (newpath)
  16.  )
  17. )
  18.  
  19. (copyfiles
  20.  (help @copyfiles-help)
  21.  (source "MT-Program:Fonts/")
  22.  (dest font_dir)
  23.  (all)
  24. )
  25.  
  26. (set lib_dir
  27.  (askdir
  28.   (prompt "Where would you like the Library installed?")
  29.   (help @askdir-help)
  30.   (default "LIBS:")
  31.   (newpath)
  32.  )
  33. )
  34.  
  35. (copyfiles
  36.  (help @copyfiles-help)
  37.  (source "MT-Program:Libs/")
  38.  (dest lib_dir)
  39.  (all)
  40. )
  41.  
  42. (message "\n\n\n\n\nNext, the documentation files will be copied.")
  43.  
  44. (set doc_dir
  45.  (askdir
  46.   (prompt "Where would you like the documentation installed?")
  47.   (help @askdir-help)
  48.   (default "DOCS:")
  49.   (newpath)
  50.  )
  51. )
  52.  
  53. (copyfiles
  54.  (help @copyfiles-help)
  55.  (source "MT-Program:Docs/")
  56.  (dest doc_dir)
  57.  (all)
  58.  (optional)
  59. )
  60.  
  61. (message "\n\n\n\n\nNow, the game will be installed.")
  62.  
  63. (set game_dir
  64.  (askdir
  65.   (prompt "Where would you like the game installed?")
  66.   (help @askdir-help)
  67.   (default "GAMES:SoloTrekII")
  68.   (newpath)
  69.  )
  70. )
  71.  
  72. (set @default-dest game_dir)
  73.  
  74. (copyfiles
  75.  (help @copyfiles-help)
  76.  (source "MT-Program:mod.DeepSpace9")
  77.  (dest game_dir)
  78. )
  79.  
  80. (copyfiles
  81.  (help @copyfiles-help)
  82.  (source "MT-Program:ModemTrek.16.hr")
  83.  (dest game_dir)
  84. )
  85.  
  86. (copyfiles
  87.  (help @copyfiles-help)
  88.  (source "MT-Program:SoloTrekII")
  89.  (dest game_dir)
  90. )
  91.  
  92. (copyfiles
  93.  (help @copyfiles-help)
  94.  (source "MT-Program:SoloTrekII.info")
  95.  (dest game_dir)
  96. )
  97.  
  98. (copyfiles
  99.  (help @copyfiles-help)
  100.  (source "MT-Program:ModemTrek.HSL")
  101.  (dest game_dir)
  102. )
  103.  
  104. (copyfiles
  105.  (help @copyfiles-help)
  106.  (source "MT-Data:ModemTrek.SND")
  107.  (dest game_dir)
  108. )
  109.  
  110. (copyfiles
  111.  (help @copyfiles-help)
  112.  (source "MT-Data:ModemTrek.GFX")
  113.  (dest game_dir)
  114. )
  115.  
  116. (copyfiles
  117.  (help @copyfiles-help)
  118.  (source "MT-Data:M-Trek.SND")
  119.  (dest game_dir)
  120. )
  121.  
  122. (copyfiles
  123.  (help @copyfiles-help)
  124.  (source "MT-Data:M-Trek.GFX")
  125.  (dest game_dir)
  126. )
  127.  
  128. (makeassign "MT-Program")
  129. (makeassign "MT-Data")
  130.  
  131.